home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_691-700 / d695 / ppdata / src / display.h < prev    next >
C/C++ Source or Header  |  1994-12-13  |  1KB  |  71 lines

  1. /*
  2. *    display.h
  3. *
  4. *    Contains menu numbers for menus defined in display.c.
  5. *
  6. *    MWS, 3/92
  7. */
  8.  
  9. /************************** MENU NUMBERS FOR MAIN MENU ************************/
  10.  
  11. #define PROJECT 0
  12.     #define LOAD    0
  13.     #define SAVE    1
  14.     #define BATCH    2
  15.     #define DELETE    3
  16.     #define ABOUT    4
  17.     #define QUIT    5
  18. #define PREFS    1
  19.     #define COLOR    0
  20.         #define COLOR0    0    /* these correspond to ppbase defines too */
  21.         #define COLOR1    1
  22.         #define POINTER    2
  23.         #define SCROLL    3
  24.         #define NONE    4
  25.     #define EFFICIENCY 1        /* ditto above comment */
  26.         #define FAST    0
  27.         #define MEDIOCRE 1
  28.         #define GOOD    2
  29.         #define VERYGOOD 3
  30.         #define BEST    4
  31.     #define SPEEDUP 2        /* ditto above comment */
  32.         #define LARGE    0
  33.         #define MEDIUM    1
  34.         #define SMALL    2
  35.     #define SUFFIX 3
  36.     #define OVERWRITE 4
  37.     #define SAVEPREFS 5
  38. #define CONTROL 2
  39.     #define DECRUNCH 0
  40.     #define RECRUNCH 1
  41.     #define IGNORE     2
  42.     #define QUERY     3
  43.  
  44. #ifndef DISPLAY_C
  45.  
  46. extern struct Menu *mainmenu, *abortmenu;
  47. extern struct NewWindow new_window;
  48.  
  49. #ifndef WINTEXT_H
  50. #include "wintext.h"
  51. #endif
  52.  
  53. extern WINTEXTINFO wtinfo;
  54. extern WINTEXT    wt_initial[];
  55. extern struct Window *window;
  56.  
  57. #endif DISPLAY_C
  58.  
  59. #define TEXT_COLUMNS    40
  60. #define TEXT_ROWS     6
  61.  
  62. #define MAINMENU    1    /* for use in SetPPDataMenu() */
  63. #define ABORTMENU    2
  64.  
  65. /* prototypes from display.c */
  66. BOOL OpenDisplay(void);
  67. void CloseDisplay(void);
  68. void FreePPDataMenus(void);
  69. BOOL AllocPPDataMenus(void);
  70. void SetPPDataMenu(int);
  71.